.product-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f2f2f2;
  border-bottom: 1px solid #e5e7eb;
  display:none;
}

.product-sticky-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 0;
  gap: 28px;
  max-width: 1520px;
  margin: 0 auto;
}

 .product-sticky-header .left {
  flex: 1;
  min-width: 0;
}

.product-sticky-header .product-title {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  line-height: 1.2;
  margin: 0 0 4px;
}

.product-sticky-header .subtitle {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
}

.product-sticky-header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-sticky-header .price {
  font-size: 24px;
  font-weight: 900;
  color: #000;
  white-space: nowrap;
}



@media (max-width: 1024px) {
  .product-sticky-header .header-inner {
    display: block;
  }
  .product-sticky-header{
    top: 56px;
  }
  .product-sticky-header .header-inner {
    padding: 8px 0;
  }
  .product-sticky-header .price {
    margin-top: 10px;
	width:100%;
	text-align:right;
  }
}